UCF STIG Viewer Logo

All user home directories must have mode 0750 or less permissive.


Overview

Finding ID Version Rule ID IA Controls Severity
V-901 GEN001480 SV-64585r1_rule ECLP-1 Medium
Description
Excessive permissions on home directories allow unauthorized access to user files.
STIG Date
Oracle Linux 5 Security Technical Implementation Guide 2015-03-26

Details

Check Text ( C-53001r1_chk )
Check the home directory mode of each user in /etc/passwd.

Procedure:
# cut -d: -f6 /etc/passwd|sort|uniq|xargs -n1 ls -ld

If a user home directory's mode is more permissive than 0750, this is a finding.

Note: Application directories are allowed and may need 0755 permissions (or greater) for correct operation.
Fix Text (F-55181r2_fix)
Change the mode of user home directories to 0750 or less permissive.

Procedure (example):
# chmod 0750

Note: Application directories are allowed and may need 0755 permissions (or greater) for correct operation.